body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #000000;
}

header {
    background-color: #2e2c2c;
    color: rgb(255, 255, 255);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.row {
    display: block;
}

.row::after {
    content: '';
    display: block;
    clear: both;
}

.w25 {
    width: 25%;
    float: left;
    padding: 10px;
    box-sizing: border-box;
}

.bike-card {
    background-color: #000000;
    color: white;
    text-align: center;
}

.bike-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
}

.bike-title {
    margin: 10px 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.bike-description {
    font-size: 1rem;
}

.bike-button {
    display: inline-block;
    background-color: #ff6600;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}


nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: bold;
}

.logo {
    line-height: 60px;
    font-size: 1.6rem;
    font-weight: 700;
}

.logo img {
    float: left;
    height: 60px;
}

.hero {
    background: url('../images/bike-bg.jpg') no-repeat center center;
    background-size: cover;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.button {
    background-color: #ff6600;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.features {
    display: flex;
    justify-content: space-around;
    padding: 2rem;
}

.feature-card {
    background: rgb(255, 255, 255);
    padding: 1rem;
    border-radius: 8px;
    width: 30%;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}